
This resource address updates the configuration properties of the alert
specified by the mandatory uri parameter from the specified database.
Upon success, MarkLogic Server returns a status code 202 (Accepted) if the request causes a restart, or status code 204 (No Content) if the request does not cause a restart. If the payload is malformed or the alert does not exist, a status code of 400 (Bad Request) is returned. A status code of 401 (Unauthorized) is returned if the user does not have the necessary privileges.
manage-admin rolehttp://marklogic.com/xdmp/privileges/manage-admin
http://marklogic.com/xdmp/privileges/manage privilege, plus one of the following privileges:
http://marklogic.com/xdmp/privileges/admin/databasehttp://marklogic.com/xdmp/privileges/admin/database/database-IDhttp://marklogic.com/xdmp/privileges/admin/database/alerts/database-IDThe properties that can be modified are listed below.
Note: The properties described here are for XML payloads. In general they are the same for
JSON, with the exception that, in JSON, schemas, namespaces,
using-namespaces, module-locations, events,
audit-events, and audit-restrictions are expressed in singular
form.
idurinamedescriptiontriggersThis is a complex structure with the following children:
triggerdomainsThis is a complex structure with the following children:
domainoptionsThis is a complex structure with the following children:
optionactionsThis is a complex structure with the following children:
action
curl -X PUT --digest -u admin:admin -H "Content-type: application/json" \
-d '{
"name": "New Name",
"description": "New Description"
}' \
http://localhost:8002/manage/v2/databases/Documents/alert/configs/properties?uri=my-alert-config
==> Updates the "name" and "description" properties of the "my-alert-config" alert.